From: Kenichi Handa Date: Mon, 15 Jun 2009 13:20:53 +0000 (+0000) Subject: (status_message): Fix previous change. Be sure to X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~382 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=731c51555657debbc46e7ab776ea32ff193a0d9e;p=emacs.git (status_message): Fix previous change. Be sure to decode a localized string. --- diff --git a/src/process.c b/src/process.c index 2471ee187bf..08030c944df 100644 --- a/src/process.c +++ b/src/process.c @@ -464,15 +464,24 @@ status_message (p) if (EQ (symbol, Qsignal) || EQ (symbol, Qstop)) { char *signame; - int c; synchronize_system_messages_locale (); signame = strsignal (code); if (signame == 0) - signame = "unknown"; - string = build_string (signame); + string = build_string ("unknown"); + else + { + int c1, c2; + + string = make_unibyte_string (signame, strlen (signame)); + if (! NILP (Vlocale_coding_system)) + string = (code_convert_string_norecord + (string, Vlocale_coding_system, 0)); + c1 = STRING_CHAR ((char *) SDATA (string), 0); + c2 = DOWNCASE (c1); + if (c1 != c2) + Faset (string, 0, make_number (c2)); + } string2 = build_string (coredump ? " (core dumped)\n" : "\n"); - c = STRING_CHAR ((char *) SDATA (string), 0); - Faset (string, 0, make_number (DOWNCASE (c))); return concat2 (string, string2); } else if (EQ (symbol, Qexit))